reset
set encoding utf8
set term svg size 600, 800             # qt, windows, wxt, svg, png, jpg etc. (qt erlaubt Export nach SVG und PNG)
                                       # Werden Zeichnungen von einem Terminal exportiert, so sind die Ergebnisse nicht
                                       # mit denen der standardspezifischen Terminals identisch.
set size 1, 1
set   autoscale                        # scale axes automatically
unset log                              # remove any log-scaling
unset label                            # remove any previous labels
unset arrow
set xtics auto                          # set xtics automatically
set ytics auto                          # set ytics automatically
#set x2tics auto
#set y2tics auto
set title "Abbremsparameter q" font ", 25"     # Titel der Zeichnung
set xlabel "q" font ", 25"   # Bezeichnung x-Achse (waagerecht)
set ylabel "Log10 (Mrd. Jahre)" font ", 25"     # Bezeichnung y-Achse (senkrecht)
set tics font ", 19"  
set xrange [-1:1]
set x2range[-1:1]                       # set x-Achse, -1 bis +1 (q)
set yrange [-9:2]                       # set y-Achse (Log10(t)-Achse,-9 bis 2 Mrd. Jahre)
set y2range [-9:2]
set datafile fortran                   # damit auch FORTRAN-D- und -G-Formate interpretiert werden können. Es wird aber momentan kein Gebrauch davon gemacht.
set datafile separator comma
unset key
#set key top right
#set key top center
#set key box
#set key left bottom
#set key bmargin 
#set key off

#set border 7
unset border 
set border
#set ytics            #
#set ytics nomirror
set x2tics            #
set y2tics            #

set rmargin 7

set output "abbq-phys.svg"
set arrow from -1,1.13958590 to 1,1.13958590 nohead lw 2.0 lt rgb "orange10" 
set arrow from -1,-3.43047745 to 1,-3.43047745 nohead lw 2.0 lt rgb "cyan10" 
set arrow from -1,0.15719372 to 1,0.15719372 nohead lw 2.0 lt rgb "red10" 
set arrow from -1,0.60782073 to 1,0.60782073 nohead lw 2.0 lt rgb "green10" 
set arrow from -1,0.88610564 to 1,0.88610564 nohead lw 2.0 lt rgb "dark-violet" 
set arrow from -1,-4.2970248 to 1,-4.2970248 nohead lw 2.0 dt 2 lt rgb "blue"
set arrow from -1,1.0126037 to 1,1.0126037 nohead lw 2.0 dt 2 lt rgb "dark-red"
set arrow from 0.5,-9 to 0.5,2 nohead lw 2.0 dt 3 lt rgb "black"
plot "Z42_q.TXT"  using 2:1 with lines lw 2.0 lt rgb "black"




